home *** CD-ROM | disk | FTP | other *** search
-
- #include "includes.h"
- #include "installergui_data.h"
-
- /********************************************************************
- *
- * DESCRIPTION
- *
- * set the text of the "Proceed Installation" button to an other one.
- * this is called when the InstallerNG enters a SWING environment or
- * when the script sets the @proceed-button variable
- *
- * IN: application - pointer to the private application structure
- * text - the new text for the button
- * OUT: -
- *
- */
-
- /********************************************************************
- *
- * STATIC
- *
- */
-
- /********************************************************************
- *
- * EXTERN
- *
- */
-
- /********************************************************************
- *
- * PUBLIC
- *
- */
-
- /********************************************************************
- *
- * CODE
- *
- */
-
- void __asm igui_NameProceed(register __a0 APTR application, register __a1 char *text)
- {
- #ifdef DEBUG
- DEBUG_MAKRO
- #endif
-
- // change the button text of the "Proceed" button
- SetAttrs(((struct Application *) application)->app_ButtonProceed, MUIA_Text_Contents, text, TAG_DONE);
- }
-